home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / vol_200 / 224_01 / od.hlp < prev    next >
Text File  |  1986-12-19  |  2KB  |  51 lines

  1. NAME
  2.      od - octal, decimal, hex, ascii, or floating point dump
  3.  
  4. SYNTAX
  5.      od [ -format ] [-bnnn] [-ennn] [ file_list ]
  6.  
  7. DESCRIPTION
  8.      Od displays the files in the file_list, or the standard input if a
  9.      file_list missing, in one or more dump formats as selected by the
  10.      format argument.  The default format is "-sx".
  11.  
  12.      The meanings of the format argument characters are:
  13.  
  14.      c    Dump as ascii characters.  Tabs, backspaces, carriage returns, 
  15.           form feeds, and line feeds are displayed as \t, \b, \r, \f, and \n.
  16.           All other non-printing characters are displayed as a hexadecimal
  17.           byte.
  18.  
  19.      d    Dump as signed decimal words ( 2 bytes ).
  20.  
  21.      u    Dump as unsigned decimal words.
  22.  
  23.      o    Dump as unsigned octal words.
  24.  
  25.      x    Dump as unsigned hexadecimal words.
  26.  
  27.      f    Dump as a floating point number ( 4 bytes ).
  28.  
  29.      l    Extend precision to long size (i.e. words to long words (4 bytes)
  30.           and floating point to double precision (8 bytes).)  This does not
  31.           affect the "c" format.
  32.  
  33.      s    Lower precision to short size.  This is only valid for integer words
  34.           which are reduced to a byte size.
  35.  
  36.  
  37.      The offset options are:
  38.  
  39.      -b   The beginning offset argument specifies the byte offset into the 
  40.           file where dumping is to commence.  The offset is a decimal number.
  41.  
  42.      -e   The ending offset argument specifies the byte offset into the file
  43.           where dumping will cease.  The offset must be a decimal number.
  44.  
  45.      The displayed address is a long word in hexadecimal format.
  46.  
  47. EXAMPLE:
  48.      Display the first 100 bytes of a.out in long octal format.
  49.  
  50.     od -lo -e100 a.out
  51.